Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | 'use strict'; |
||
42 | app.controller('mainController', ['$scope', '$window', '$http', function ($scope, $window, $http) { |
||
43 | |||
44 | $scope.resume = function () { |
||
45 | $window.location.href = '/src/Resume.pdf'; |
||
46 | }; |
||
47 | |||
48 | $http.get(url + '/api') |
||
49 | .success(function(data) { |
||
50 | $scope.items = data.Projects; |
||
51 | console.log($scope.items); |
||
|
|||
52 | }); |
||
53 | }]); |
||
54 | |||
63 |